home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2009 June / PersonalComputerWorld-June2009-CoverdiscCD.iso / Software / Freeware / Firebug 1.3.3 / firebug-1.3.3-fx.xpi / skin / classic / net.css < prev    next >
Encoding:
Cascading Style Sheet File  |  2009-02-02  |  7.5 KB  |  406 lines

  1. /* See license.txt for terms of usage */
  2.  
  3. .panelNode-net {
  4.     overflow-x: hidden;
  5. }
  6.  
  7. .netTable {
  8.     width: 100%;
  9. }
  10.  
  11. /************************************************************************************************/
  12.  
  13. .hideCategory-undefined .category-undefined,
  14. .hideCategory-html .category-html,
  15. .hideCategory-css .category-css,
  16. .hideCategory-js .category-js,
  17. .hideCategory-image .category-image,
  18. .hideCategory-xhr .category-xhr,
  19. .hideCategory-flash .category-flash,
  20. .hideCategory-txt .category-txt,
  21. .hideCategory-bin .category-bin {
  22.     display: none;
  23. }
  24.  
  25. /************************************************************************************************/
  26.  
  27. .netHeadRow {
  28.     background: url(chrome://firebug/skin/group.gif) repeat-x #FFFFFF;
  29. }
  30.  
  31. .netHeadCol {
  32.     border-bottom: 1px solid #CCCCCC;
  33.     padding: 2px 4px 2px 18px;
  34.     font-weight: bold;
  35. }
  36.  
  37. .netHeadLabel {
  38.     white-space: nowrap;
  39.     overflow: hidden;    
  40. }
  41.  
  42. /************************************************************************************************/
  43.  
  44. .netRow {
  45.     background: LightYellow;
  46. }
  47.  
  48. .netRow.loaded {
  49.     background: #FFFFFF;
  50. }
  51.  
  52. .netHrefCol:hover {
  53.     background: LightYellow;
  54. }
  55.  
  56. .netRow.loaded:hover {
  57.     background: #EFEFEF;
  58. }
  59.  
  60. .netCol {
  61.     padding: 0;
  62.     vertical-align: top;
  63.     border-bottom: 1px solid #EFEFEF;  
  64.     white-space: nowrap;
  65. }
  66.  
  67. .netStatusCol {
  68.     padding-left: 10px;
  69.     color: rgb(128, 128, 128);
  70. }
  71.  
  72. .responseError > .netStatusCol {
  73.     color: red;
  74. }
  75.  
  76. .netDomainCol {
  77.     padding-left: 5px;
  78. }
  79.  
  80. .netSizeCol {
  81.     text-align: right;
  82.     padding-right: 10px;
  83. }
  84.  
  85. .netHrefLabel {
  86.     -moz-box-sizing: padding-box;
  87.     overflow: hidden;
  88.     z-index: 100;
  89.     position: absolute;
  90.     padding-left: 18px;
  91.     padding-top: 1px;
  92.     max-width: 15%;
  93.     font-weight: bold;
  94. }
  95.  
  96. .netFullHrefLabel {
  97.     display: none;
  98.     -moz-user-select: none;
  99.     padding-right: 10px;
  100.     padding-bottom: 3px;
  101.     max-width: 100%;
  102.     background: #FFFFFF;
  103. }
  104.  
  105. .netHrefCol:hover > .netStatusLabel,
  106. .netHrefCol:hover > .netDomainLabel,
  107. .netHrefCol:hover > .netHrefLabel {
  108.     display: none;
  109. }
  110.  
  111. .netHrefCol:hover > .netFullHrefLabel {
  112.     display: block;
  113. }
  114.  
  115. .netRow.loaded:hover > .netCol > .netFullHrefLabel {
  116.     background-color: #EFEFEF;
  117. }
  118.  
  119. .netSizeLabel {
  120.     padding-left: 6px;
  121. }
  122.  
  123. .netStatusLabel,
  124. .netDomainLabel,
  125. .netSizeLabel,
  126. .netBar {
  127.     padding: 1px 0 2px 0 !important;
  128. }
  129.  
  130. .responseError {
  131.     color: red;
  132. }
  133.  
  134. /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
  135.  
  136. .hasHeaders .netHrefLabel:hover {
  137.     cursor: pointer;
  138.     color: blue;
  139.     text-decoration: underline;
  140. }
  141.  
  142. /************************************************************************************************/
  143.  
  144. .netBar {
  145.     position: relative;
  146.     border-right: 50px solid transparent;
  147. }
  148.  
  149. .netConnectingBar {
  150.     position: absolute;
  151.     left: 0;
  152.     top: 0;
  153.     bottom: 0;
  154.     background: #FFFFFF url(chrome://firebug/skin/netBarConnecting.gif) repeat-x;
  155.     z-index:40;
  156. }
  157.  
  158. .netWaitingBar {
  159.     position: absolute;
  160.     left: 0;
  161.     top: 0;
  162.     bottom: 0;
  163.     background: #FFFFFF url(chrome://firebug/skin/netBarWaiting.gif) repeat-x;
  164.     z-index:30;
  165. }
  166.  
  167. .netRespondedBar {
  168.     position: absolute;
  169.     left: 0;
  170.     top: 0;
  171.     bottom: 0;
  172.     background: #FFFFFF url(chrome://firebug/skin/netBarResponded.gif) repeat-x;
  173.     z-index:20;
  174. }
  175.  
  176. .netTimeBar {    
  177.     position: absolute;
  178.     left: 0;
  179.     top: 0;
  180.     bottom: 0;
  181.     min-width: 3px;
  182.     background: #38D63B url(chrome://firebug/skin/netBarLoading.gif) repeat-x;
  183.     border-right: 1px solid #38D63B;
  184.     z-index:10;
  185. }
  186.  
  187. .netWindowLoadBar,
  188. .netContentLoadBar {
  189.     position: absolute;
  190.     left: 0;
  191.     top: 0;
  192.     bottom: 0;
  193.     width: 1px;
  194.     background-color: red;
  195.     z-index:50;
  196.     opacity: 0.5;
  197.     display: none;
  198.     margin-bottom:-1px;
  199. }
  200.  
  201. .netContentLoadBar {
  202.     background-color: Blue;
  203. }
  204.  
  205. .netTimeLabel {
  206.     -moz-box-sizing: padding-box;
  207.     position: absolute;
  208.     top: 1px;
  209.     left: 100%;
  210.     padding-left: 6px;
  211.     color: #444444;
  212.     min-width: 16px;
  213.     background: url(chrome://firebug/skin/loading_16.gif) no-repeat 4px -1px;
  214. }
  215.  
  216. .timeInfoTip {
  217.     width: 150px; 
  218.     height: 40px
  219. }
  220.  
  221. .timeInfoTipBar {
  222.     position: relative;
  223.     display: block;
  224.     margin: 0;
  225.     opacity: 1;
  226.     height: 15px;
  227. }
  228.  
  229. .netSummaryRow .netTimeLabel,
  230. .loaded .netTimeLabel {
  231.     background: transparent;
  232. }
  233.  
  234. .loaded .netTimeBar {
  235.     background: #B6B6B6 url(chrome://firebug/skin/netBarLoaded.gif) repeat-x;
  236.     border-color: #B6B6B6;
  237. }
  238.  
  239. .fromCache .netTimeBar {
  240.     background: #D6D6D6 url(chrome://firebug/skin/netBarCached.gif) repeat-x;
  241.     border-color: #D6D6D6;
  242. }
  243.  
  244. .netSummaryRow .netTimeBar {
  245.     background: #BBBBBB;
  246.     border: none;
  247. }
  248.  
  249. /************************************************************************************************/
  250.  
  251. .netSummaryLabel {
  252.     color: #222222;
  253. }
  254.  
  255. .netSummaryRow {
  256.     background: #BBBBBB !important;
  257.     font-weight: bold;
  258. }
  259.  
  260. .netSummaryRow .netBar {
  261.     border-right-color: #BBBBBB;
  262. }
  263.  
  264. .netSummaryRow > .netCol {
  265.     border-top: 1px solid #999999;
  266.     border-bottom: 2px solid;
  267.     -moz-border-bottom-colors: #EFEFEF #999999;
  268.     padding-top: 1px;
  269.     padding-bottom: 2px;
  270. }
  271.  
  272. .netCountLabel {
  273.     padding-left: 18px;
  274. }
  275.  
  276. .netTotalSizeCol {
  277.     text-align: right;
  278.     padding-right: 10px;
  279. }
  280.  
  281. .netTotalTimeCol {
  282.     text-align: right;
  283. }
  284.  
  285. .netCacheSizeLabel {
  286.     position: absolute;
  287.     z-index: 1000;
  288.     left: 0;
  289.     top: 0;
  290. }
  291.  
  292. /************************************************************************************************/
  293.  
  294. .netLimitRow {
  295.     background: rgb(255, 255, 225) !important;
  296.     font-weight:normal;
  297.     color: black;
  298.     font-weight:normal;
  299. }
  300.  
  301. .netLimitLabel {
  302.     padding-left: 18px;
  303. }
  304.  
  305. .netLimitRow > .netCol {
  306.     border-bottom: 2px solid;
  307.     -moz-border-bottom-colors: #EFEFEF #999999;
  308.     vertical-align: middle !important;
  309.     padding-top: 2px;
  310.     padding-bottom: 2px;
  311. }
  312.  
  313. .netLimitButton {
  314.     font-size: 11px;
  315.     padding-top: 1px;
  316.     padding-bottom: 1px;
  317. }
  318.  
  319. /************************************************************************************************/
  320.  
  321. .netInfoCol {
  322.     border-top: 1px solid #EEEEEE;
  323.     background: url(chrome://firebug/skin/group.gif) repeat-x #FFFFFF;
  324. }
  325.  
  326. .netInfoBody {
  327.     margin: 10px 0 4px 10px;
  328. }
  329.  
  330. .netInfoTabs {
  331.     position: relative;
  332.     padding-left: 14px;
  333. }
  334.  
  335. .netInfoTab {
  336.     position: relative;
  337.     top: -3px;
  338.     margin-top: 10px;
  339.     padding: 4px 6px;
  340.     border: 1px solid transparent;
  341.     border-bottom: none;
  342.     font-weight: bold;
  343.     color: #565656;
  344. }
  345.  
  346. .netInfoTab:hover {
  347.     cursor: pointer;
  348. }
  349.  
  350. .netInfoTab[selected="true"] {
  351.     cursor: default !important;
  352.     border-color: #D7D7D7;
  353.     -moz-border-radius: 4px 4px 0 0;
  354.     background-color: #FFFFFF;
  355. }
  356.  
  357. .logRow-netInfo.error .netInfoTitle {
  358.     color: red;
  359. }
  360.  
  361. .logRow-netInfo.loading .netInfoResponseText {
  362.     font-style: italic;
  363.     color: #888888;
  364. }
  365.  
  366. .loading .netInfoResponseHeadersTitle {
  367.     display: none;
  368. }
  369.  
  370. .netInfoText {
  371.     display: none;
  372.     margin: 0;
  373.     border: 1px solid #D7D7D7;
  374.     border-right: none;
  375.     padding: 8px;
  376.     background-color: #FFFFFF;
  377.     font-family: Monaco, monospace;
  378.     /*overflow-x: auto; HTML is damaged in case of big (2-3MB) responses */ 
  379. }
  380.  
  381. .netInfoText[selected="true"] {
  382.     display: block;
  383. }
  384.  
  385. .netInfoParamName {
  386.     padding: 0 10px 0 0;
  387.     font-family: Lucida Grande, Tahoma, sans-serif;
  388.     font-weight: bold;
  389.     vertical-align: top;
  390.     text-align: right;
  391. }
  392.  
  393. .netInfoHeadersText {
  394.     padding-top: 0;
  395. }
  396.  
  397. .netInfoHeadersGroup {
  398.     margin-bottom: 4px;
  399.     border-bottom: 1px solid #D7D7D7;
  400.     padding-top: 8px;
  401.     padding-bottom: 2px;
  402.     font-family: Lucida Grande, Tahoma, sans-serif;
  403.     font-weight: bold;
  404.     color: #565656;
  405. }
  406.